home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1997 December / MACPOWER-1997-12.ISO.7z / MACPOWER-1997-12.ISO / AMUG / PROGRAMMING / Raven 1.2 Examples.sit / Raven 1.2 Examples / Quill / Source / ToolWindowProxy.h < prev    next >
Text File  |  1996-12-25  |  1KB  |  43 lines

  1. /*
  2.  *  File:       ToolWindowProxy.h
  3.  *  Summary:       A stand in for TToolWindow that behaves better when it's being edited.
  4.  *  Written by: Jesse Jones
  5.  *
  6.  *  Copyright ゥ 1996 Jesse Jones. 
  7.  *    For conditions of distribution and use, see copyright notice in ZTypes.h  
  8.  *
  9.  *  Change History (most recent first):    
  10.  *
  11.  *         <->    12/24/96    JDJ        Created
  12.  */
  13.  
  14. #pragma once
  15.  
  16. #include "WindowProxy.h"
  17.  
  18.  
  19. // ===================================================================================
  20. //    class CToolWindowProxy
  21. // ===================================================================================
  22. class CToolWindowProxy : public CWindowProxy {
  23.  
  24.     typedef CWindowProxy Inherited;
  25.  
  26. //-----------------------------------
  27. //    Initialization/Destruction
  28. //
  29. public:
  30.     virtual             ~CToolWindowProxy();
  31.         
  32.                         CToolWindowProxy(const SWindowInfo& info, MCommander* superCommander);
  33.                         
  34. protected:
  35.                         CToolWindowProxy();
  36.                         
  37. //-----------------------------------
  38. //    TReanimator Support
  39. //
  40. public:
  41.     static     MReanimatable* Create(MReanimatable* parent);
  42. };
  43.